home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wdj0797.zip / TOMLINSN.ZIP / SECURITY.H < prev    next >
Text File  |  1997-04-28  |  461b  |  16 lines

  1. #define SD_BUF    8192
  2.  
  3. #define WDJSRVC_WINSTA       0x00000001
  4. #define WDJSRVC_DESKTOP      0x00000002
  5.  
  6. #define Dbg(str) OutputDebugString(str)
  7. #define Dbg1(str,a1) {char sz[255];sprintf(sz,str,a1);Dbg(sz);}
  8.  
  9. VOID DumpWinStaSD(VOID);
  10. VOID DumpDesktopSD(VOID);
  11. VOID DumpSD(HANDLE Handle, DWORD ObjectType);
  12. VOID DumpSid(PSID Sid, DWORD Attributes);
  13. VOID DumpAcl(PACL Acl, DWORD ObjectType);
  14. VOID DumpAccessMask(ACCESS_MASK Mask, DWORD ObjectType);
  15.  
  16.